home *** CD-ROM | disk | FTP | other *** search
/ Visual Cafe 3 / Visual Cafe 3.ISO / Vcafe / Main.bin / EmptyOption.java < prev    next >
Text File  |  1998-09-08  |  491b  |  31 lines

  1. package com.symantec.itools.frameworks.application.commandline;
  2.  
  3.  
  4. /**
  5.  * @author Symantec Internet Tools Division
  6.  * @version 1.0
  7.  * @since VCafe 3.0
  8.  */
  9.  
  10. public abstract class EmptyOption 
  11.     extends Option
  12. {
  13.     protected EmptyOption()
  14.     {
  15.     }
  16.     
  17.     protected EmptyOption(String[] flags)
  18.     {
  19.         super(flags);        
  20.     }
  21.  
  22.     /**
  23.      * @since VCafe 3.0
  24.      */
  25.     
  26.     protected int getConsumedCount()
  27.     {
  28.         return (0);
  29.     }    
  30. }
  31.